/* General Section Styling */
#web-hosting-maintenance,
#healthcare-section {
    background-color: white;
    padding: 50px 0; /* Vertical padding for sections */
}

/* Container Styling */
.website-container {
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 40px; /* Space between image and text */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; /* Center container horizontally */
    padding: 0 20px; /* Horizontal padding */
}

/* Image Containers */
.website-image-container,
.healthcare-image-container {
    flex: 1;
    min-width: 300px; /* Minimum width for images */
}

.website-image,
.healthcare-image {
    width: 100%; /* Full width of container */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Text Content */
.website-content {
    flex: 1;
    min-width: 300px; /* Minimum width for text */
}

/* Heading Styling with Underline */
.website-title {
    font-size: 32px;
    color: #fcb401;
    font-weight: bold;
    margin-bottom: 20px; /* Spacing below heading */
    line-height: 1.2;
    text-decoration: underline; /* Underline added to headings */
}

/* Text Styling */
.website-subtitle,
.website-text {
    font-size: 16px;
    color: #1a1919;
    line-height: 1.6;
    margin-bottom: 20px; /* Consistent spacing between text blocks */
}

.website-text strong {
    color: #19C0FF; /* Blue for emphasis */
    font-weight: bold;
}

.website-text strong1 { /* Custom class for additional emphasis */
    color: #fcb401;
    font-weight: bold;
    font-size: 20px;
}

.website-subtitle strong {
    color: #19C0FF;
    font-weight: bold;
}

/* Button Styling */
.website-button {
    background-color: #19C0FF;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.website-button:hover {
    background-color: #57b7da;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .website-container {
        flex-direction: column; /* Stack items vertically */
        gap: 30px; /* Reduced gap for mobile */
        padding: 0 15px; /* Slightly less padding on smaller screens */
    }

    /* Image Containers */
    .website-image-container,
    .healthcare-image-container {
        order: -1; /* Image on top in mobile view */
        min-width: 100%; /* Full width for better scaling */
        max-width: 400px; /* Cap image width for balance */
        margin: 0 auto; /* Center the image */
    }

    /* Text Content */
    .website-content {
        text-align: left; /* Left-align text for readability */
        min-width: 100%; /* Full width for text */
    }

    .website-title {
        font-size: 28px; /* Slightly smaller for mobile */
        margin-bottom: 15px; /* Adjusted spacing */
        text-decoration: underline; /* Underline persists in mobile view */
    }

    .website-subtitle,
    .website-text {
        font-size: 13px; /* Slightly smaller for mobile */
        margin-bottom: 15px; /* Consistent spacing */
    }

    .website-button {
        display: block; /* Ensure button takes full width or looks balanced */
        margin: 0 auto; /* Center the button */
        padding: 10px 20px; /* Slightly smaller padding */
    }
}